Noemax FastInfoset.NET
WriteValue(Int64[]) Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class > WriteValue Method : WriteValue(Int64[]) Method






value
The array containing a single or multiple 64-bit signed integers.

Encodes a single or multiple 64-bit signed integers using Fast Infoset's binary encoding and writes the result at the current position in the element content.

Syntax

Visual Basic (Declaration) 
Public Overloads Shadows Sub WriteValue( _
   ByVal value() As Long _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriter
Dim value() As Long
 
instance.WriteValue(value)
C# 
public new void WriteValue( 
   long[] value
)
Delphi 
public procedure WriteValue( 
    value: Int64array of
); 
JScript 
public hide function WriteValue( 
   value : long[]
);
Managed Extensions for C++ 
public: new void WriteValue( 
   long[]* value
) 
C++/CLI 
public:
new void WriteValue( 
   array<int64>^ value
) 

Parameters

value
The array containing a single or multiple 64-bit signed integers.

See Also